home *** CD-ROM | disk | FTP | other *** search
/ Aminet 25 / Aminet 25 (1998)(GTI - Schatztruhe)[!][Jun 1998].iso / Aminet / misc / math / postfix.readme < prev    next >
Encoding:
Text File  |  1998-05-05  |  1.6 KB  |  74 lines

  1. Short:    Postfix Expression Calculator
  2. Author:   Daniel Charles Kovacs
  3. Uploader: dkovacs@cyberbeach.net
  4. Type:     misc/math
  5.  
  6. This is a semi-functional postfix expression calculator for Amigados.
  7.  
  8. What is postfix?
  9.  
  10. The opposite of infix ;)
  11.  
  12. Postfix expressions are written differently than regular expressions, but we
  13. have all done them in the past (as early as grade 1).  Here is what I mean:
  14.  
  15. Normal (infix) math:
  16.  
  17.    2 + 2 = 4
  18.  
  19. Postfix
  20.   
  21.     2
  22.    +2
  23.    --
  24.     4
  25.  
  26. Operations always follow the numbers.  Consider this evaluation:
  27.  
  28.    (3+4)*(2+3) = 35
  29.  
  30. it would be written in postfix (for the this program)
  31.  
  32. 3 4 add 2 3 add mul
  33.  
  34. The program offers the following operations:
  35.  
  36. add, subtract, multiply, divide (with zero-checking), negate, absolute
  37. value, sine, cosine, tangent, inverse tangent, and PI.
  38.  
  39.  
  40. Usage:
  41.  
  42. Double click on the postfix icon.  A window will open awaiting your input,
  43. type help and press enter to get a list of operations.  Type quit to exit
  44. the calculator, show to display the result and clear to empty the stack.
  45.  
  46.  
  47. Distribution:
  48.  
  49. Give it to anyone, except not for money.
  50.  
  51. Contact:
  52.  
  53. Daniel Kovacs
  54. 106 Main St.
  55. Lion's Head
  56. Ontario Canada
  57. N0H 1W0
  58.  
  59. (519) 793 4431
  60. (705) 523 0899
  61.  
  62. dkovacs@cyberbeach.net
  63. http://www.cyberbeach.net/~dkovacs
  64.  
  65.  
  66. ============================= Archive contents =============================
  67.  
  68. Original  Packed Ratio    Date     Time    Name
  69. -------- ------- ----- --------- --------  -------------
  70.    28392   11358 59.9% 04-Apr-98 11:22:16  PostFix
  71.     1263     731 42.1% 04-Apr-98 11:53:40  postfix.readme
  72. -------- ------- ----- --------- --------
  73.    29655   12089 59.2% 05-Apr-98 19:15:36   2 files
  74.